home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _46236E69B5BC47738410D94BCE87305E < prev    next >
Encoding:
Text File  |  2006-08-04  |  667 b   |  23 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation.',
  6.         'Copyright': u'Copyright (c) 2003-2006 Corel Corporation.  All rights reserved.',
  7.         'Description': u'Factory default preset for TimeMachine effect',
  8.         'Host': u'Corel Paint Shop Pro Photo XI',
  9.         'Host Version': u'11.00'
  10.         }
  11.  
  12. def Preset_TimeMachine():
  13.     return {
  14.         'Style': App.Constants.TimeMachine.Daguerreotype, 
  15.         'IntensityAmount': 50, 
  16.         'PhotoEdges': True
  17.         }
  18.  
  19. def Do(Environment):
  20.     # TimeMachine_LOCALIZED
  21.     App.Do( Environment, 'TimeMachine',         Preset_TimeMachine())
  22.  
  23.